We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
join_multicast
1 parent 210f0dc commit 89de692Copy full SHA for 89de692
src/liblibc/lib.rs
@@ -2206,10 +2206,10 @@ pub mod consts {
2206
pub const IPPROTO_TCP: c_int = 6;
2207
pub const IPPROTO_IP: c_int = 0;
2208
pub const IPPROTO_IPV6: c_int = 41;
2209
- pub const IP_MULTICAST_TTL: c_int = 3;
2210
- pub const IP_MULTICAST_LOOP: c_int = 4;
2211
- pub const IP_ADD_MEMBERSHIP: c_int = 5;
2212
- pub const IP_DROP_MEMBERSHIP: c_int = 6;
+ pub const IP_MULTICAST_TTL: c_int = 10;
+ pub const IP_MULTICAST_LOOP: c_int = 11;
+ pub const IP_ADD_MEMBERSHIP: c_int = 12;
+ pub const IP_DROP_MEMBERSHIP: c_int = 13;
2213
pub const IPV6_ADD_MEMBERSHIP: c_int = 5;
2214
pub const IPV6_DROP_MEMBERSHIP: c_int = 6;
2215
pub const IP_TTL: c_int = 4;
0 commit comments